home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / console.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  30 lines

  1. /*
  2.  * console.h --
  3.  *
  4.  *    Declarations for things exported by devConsole.c to the rest
  5.  *    of the device module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/console.h,v 9.1 91/11/04 13:10:50 mgbaker Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVCONSOLE
  20. #define _DEVCONSOLE
  21.  
  22. #include "z8530.h"
  23.  
  24. extern int DevConsoleConvertKeystroke _ARGS_((int value));
  25. extern void DevConsoleInputProc _ARGS_((DevTty *ttyPtr, int value));
  26. extern int DevConsoleRawProc _ARGS_((void *ptr, int operation,
  27.     int inBufSize, char *inBuffer, int outBufSize, char *outBuffer));
  28.  
  29. #endif /* _DEVCONSOLE */
  30.